IF A NEW VERSION OF JLAYER IS CREATED, HOW DO I ADD THAT TO CodeSimian.jar?

SUMMARY: unzip 2 jar/zip files, put 1 inside the other,
do a global find/replace of "javazoom.jl.decoder" --> "codesimian.mp3decoder", and recompile.

DETAILS:
I used jl1.0.jar (JLayer version 1.0) but you will have a different JAR.
You can unzip JAR files with winzip (www.winzip.com) or any other UNZIPPING software.
All Jar files are Zip files, but most Zip files are not Jar files.

Unzip CodeSimian.jar (to get the source-code, which is mostly .java and .cs files).
Then unzip the new JLayer JAR and put the files from JLayer's javazoom.jl.decoder
package into the codesimian.mp3decoder package (mostly a direct copy).

Only 1 change of that source-code is necessary:
In all JLayer's .java files, change all "javazoom.jl.decoder" to "codesimian.mp3decoder".

This avoids dynamic class lookup, which sometimes breaks programs,
like in applets in paranoid web browsers.

Compile the same way as usual, with compilej.bat (first step only),
or compile.bat (both steps),
or createSourceZip.bat (also creates CodeSimian_source_code.zip)